home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / Gopher_1.12 / GopherBrowserCell.h < prev    next >
Text File  |  1992-03-18  |  493b  |  29 lines

  1. // GopherBrowserCell.h
  2.  
  3. #import <appkit/NXBrowserCell.h>
  4. #import <stdio.h>
  5. #import <strings.h>
  6. #import <appkit/Font.h>
  7. #import <appkit/Text.h>
  8.  
  9. @interface GopherBrowserCell:NXBrowserCell
  10. {
  11. char RemoteName[512];
  12. char RemoteHost[128];
  13. int RemotePort;
  14. char Type;
  15. }
  16.  
  17. - setTextAttributes:textObj;
  18.  
  19. - setRemoteName:(char *)name;
  20. - (char *)remoteName;
  21. - setRemoteHost:(char *)name;
  22. - (char *)remoteHost;
  23. - setRemotePort:(int)port;
  24. - (int)remotePort;
  25. - setCellType:(char)type;
  26. - (char)cellType;
  27.  
  28. @end
  29.